home *** CD-ROM | disk | FTP | other *** search
/ Varios Español / Varios Español.iso / DBASE5 / TEMPLATE.ZIP / DD_REPT.COD < prev    next >
Text File  |  1994-10-12  |  1KB  |  37 lines

  1. //
  2. // Module Name: DD_REPT.COD - current (selector name): Menu_Act = 4
  3. // Selectors used : FRM_Dest, FRM_File, FRM_Headng, FRM_Plain, FRM_Eject, FRM_Summry
  4. //            : Flter_Cond, Scope, For_Expr, While_Exp
  5. // Description: DOC. include file for REPORT option.
  6. // Syntax     : REPORT FORM <report form file>/? [<scope>]
  7. //                  [FOR <condition>] [WHILE <condition>]
  8. //                  [PLAIN] [SUMMARY] [NOEJECT] [TO PRINT]
  9. //                  [HEADING <expC>]
  10. //                  [TO FILE <file>]
  11. //
  12. //
  13. Ejecutar el informe {FRM_File}.frm
  14. {if Scope || For_Expr || While_Exp || FRM_Headng || FRM_Summry || FRM_Eject ||
  15.   FRM_Plain then }
  16. {endofpage();}
  17. Opciones del mandato:
  18. { if Scope} SCOPE {upper(Scope)}{endif}\
  19. { if For_Expr} FOR {For_Expr}{endif}\
  20. { if While_Exp} WHILE {While_Exp}{endif}\
  21. {if !FRM_Plain} PLAIN {endif}
  22. {endofpage();}
  23. {if FRM_Summry} SUMMARY {endif}\
  24. {if FRM_Eject} NOEJECT {endif}\
  25. { if FRM_Headng} HEADING "{FRM_Headng}"{ endif}
  26. {endif}
  27. {endofpage();}
  28. Dispositivo de impresión: \
  29. {if not FRM_Dest}Enviar a impresora por omisión{endif}\
  30. {if FRM_Dest == 1}Enviar a fichero {FRM_File}.txt{endif}\
  31. {if FRM_Dest == 2}Pantalla{endif}\
  32. {if FRM_Dest == 3}Preguntar al usuario durante la ejecución{endif}{if Flter_Cond} Filtro: {Flter_Cond}
  33. {endif}
  34. {endofpage();}
  35.  
  36. // EOP DD_REPT.COD
  37.